all files / common/ common.js

50% Statements 2/4
100% Branches 0/0
0% Functions 0/1
50% Lines 2/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19                                 
import angular from 'angular';
import 'core-js/fn/array/from';
import 'angular-ui-bootstrap';
import 'angular-sanitize';
import 'ui-select';
import choicesTemplate from './template/selectize/choices.pug';
import matchTemplate from './template/selectize/match.pug';
import hirlevel from '../applications/hirlevel/hirlevel';
import toggleNavbar from '../modules/navbar/toggleNavbar';
import editedModal from './modal/modal';
 
const MODULE_NAME = 'common';
angular.module(MODULE_NAME, ['ui.bootstrap', 'ngSanitize', 'ui.select', hirlevel, editedModal, toggleNavbar]).run(function($templateCache) {
	'ngInject';
	$templateCache.put('selectize/choices.tpl.html', choicesTemplate());
	$templateCache.put('selectize/match.tpl.html', matchTemplate());
});
 
export default MODULE_NAME;